Open
Conversation
97d3400 to
56a14c5
Compare
alamb
reviewed
Feb 26, 2026
Contributor
alamb
left a comment
There was a problem hiding this comment.
Thank you @ishanema03
I think this is a non trivial breaking API (as you can see by the number of API changes)
I understand the rationale for trying to make the API easier to use, but I think we need to balance that against the need to avoid breaking downstream users who are already using the APIs
Can someone help me understand if there is some particular bug this is solving?
I think some of the nuance on API change guidelines isn't well documented, so I'll make a PR to update it https://datafusion.apache.org/contributor-guide/api-health.html
Contributor
|
I wrote up some thoughts here |
github-merge-queue bot
pushed a commit
that referenced
this pull request
Feb 28, 2026
## Which issue does this PR close? ## Rationale for this change DataFusion does make API changes from time to time, and that is a normal part of software development. However, it is important to evaluate the impact of those API changes on downstream users and to ensure that the benefits of the change are clear to those users. I found a few times where API changes were made with the justification that "some APIs in DataFusion are cleaner" or "this is more consistent with other APIs". While those may be valid justifications, it is painful for downstream users who have change their code to accommodate the API change when they get nothing in return This most recently happened in this PR - #19790 (review) thus I think the contributor guide should include some guidance on how to evaluate breaking API changes and to ensure that the benefits of the change are clear to downstream users. ## What changes are included in this PR? Polish up the API guidance section ## Are these changes tested? By CI ## Are there any user-facing changes? Better / clearer docs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Which issue does this PR close?
From<String>forColumn#17375Rationale for this change
As mentioned in the issue, the From trait implementations for Column were misleading - they invoked Column::from_qualified_name() which parses and lower-cases field names, making conversions like field.name().into() behave unexpectedly. Requiring explicit calls to Column::from_qualified_name() makes the behavior clear and prevents misuse.
What changes are included in this PR?
Are these changes tested?
Yes, all existing tests have been updated and pass with the new API.
Are there any user-facing changes?
Yes, this is a breaking API change: